More minor config fixes.
authorRaph Levien <raph@src.gnome.org>
Tue, 21 Jul 1998 05:53:44 +0000 (05:53 +0000)
committerRaph Levien <raph@src.gnome.org>
Tue, 21 Jul 1998 05:53:44 +0000 (05:53 +0000)
ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdkrgb.c

index 507bce75609de7ef98ad9975935376c2fe0368b8..fdcb3d9b7e747a2166e335b35d8e79df7a944364 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1998-07-20  Raph Levien  <raph@acm.org>
+
+       * gdk/gdkrgb.c: More cleanups in the config process.
+
 1998-07-20  Raph Levien  <raph@acm.org>
 
        * gdkrgb.c: Fixed minor config bug preventing big-endian
index 507bce75609de7ef98ad9975935376c2fe0368b8..fdcb3d9b7e747a2166e335b35d8e79df7a944364 100644 (file)
@@ -1,3 +1,7 @@
+1998-07-20  Raph Levien  <raph@acm.org>
+
+       * gdk/gdkrgb.c: More cleanups in the config process.
+
 1998-07-20  Raph Levien  <raph@acm.org>
 
        * gdkrgb.c: Fixed minor config bug preventing big-endian
index 507bce75609de7ef98ad9975935376c2fe0368b8..fdcb3d9b7e747a2166e335b35d8e79df7a944364 100644 (file)
@@ -1,3 +1,7 @@
+1998-07-20  Raph Levien  <raph@acm.org>
+
+       * gdk/gdkrgb.c: More cleanups in the config process.
+
 1998-07-20  Raph Levien  <raph@acm.org>
 
        * gdkrgb.c: Fixed minor config bug preventing big-endian
index 507bce75609de7ef98ad9975935376c2fe0368b8..fdcb3d9b7e747a2166e335b35d8e79df7a944364 100644 (file)
@@ -1,3 +1,7 @@
+1998-07-20  Raph Levien  <raph@acm.org>
+
+       * gdk/gdkrgb.c: More cleanups in the config process.
+
 1998-07-20  Raph Levien  <raph@acm.org>
 
        * gdkrgb.c: Fixed minor config bug preventing big-endian
index 507bce75609de7ef98ad9975935376c2fe0368b8..fdcb3d9b7e747a2166e335b35d8e79df7a944364 100644 (file)
@@ -1,3 +1,7 @@
+1998-07-20  Raph Levien  <raph@acm.org>
+
+       * gdk/gdkrgb.c: More cleanups in the config process.
+
 1998-07-20  Raph Levien  <raph@acm.org>
 
        * gdkrgb.c: Fixed minor config bug preventing big-endian
index 507bce75609de7ef98ad9975935376c2fe0368b8..fdcb3d9b7e747a2166e335b35d8e79df7a944364 100644 (file)
@@ -1,3 +1,7 @@
+1998-07-20  Raph Levien  <raph@acm.org>
+
+       * gdk/gdkrgb.c: More cleanups in the config process.
+
 1998-07-20  Raph Levien  <raph@acm.org>
 
        * gdkrgb.c: Fixed minor config bug preventing big-endian
index 507bce75609de7ef98ad9975935376c2fe0368b8..fdcb3d9b7e747a2166e335b35d8e79df7a944364 100644 (file)
@@ -1,3 +1,7 @@
+1998-07-20  Raph Levien  <raph@acm.org>
+
+       * gdk/gdkrgb.c: More cleanups in the config process.
+
 1998-07-20  Raph Levien  <raph@acm.org>
 
        * gdkrgb.c: Fixed minor config bug preventing big-endian
index 8f8a8d6e9ed8dc0a488c4f8c61af65a739cbedf0..e79d355e731df9a0139f7b39bdb2e4a541a381f1 100644 (file)
@@ -55,16 +55,6 @@ struct _GdkRgbInfo
   gulong *gray_pixels;
   gulong *reserved_pixels;
 
-  gulong *lookup_red;
-  gulong *lookup_green;
-  gulong *lookup_blue;
-
-  GtkDitherInfo *dither_red;
-  GtkDitherInfo *dither_green;
-  GtkDitherInfo *dither_blue;
-  GtkDitherInfo *dither_gray;
-  guchar ***dither_matrix;
-
   guint nred_shades;
   guint ngreen_shades;
   guint nblue_shades;
@@ -518,16 +508,6 @@ gdk_rgb_init (void)
       image_info->gray_pixels = NULL;
       image_info->reserved_pixels = NULL;
 
-      image_info->lookup_red = NULL;
-      image_info->lookup_green = NULL;
-      image_info->lookup_blue = NULL;
-
-      image_info->dither_red = NULL;
-      image_info->dither_green = NULL;
-      image_info->dither_blue = NULL;
-      image_info->dither_gray = NULL;
-      image_info->dither_matrix = NULL;
-
       image_info->nred_shades = 6;
       image_info->ngreen_shades = 6;
       image_info->nblue_shades = 4;